사이트 내 전체검색
마우스대면 흔들리게 하기
https://cmd.kr/javascript/253 URL이 복사되었습니다.

본문

<head> 와 </head>사이에 수정하지 말고 그대로 넣으세요.

<style>
.shakeimage{
position:relative
}
</style>
<script language="JavaScript1.2">
//configure shake degree (where larger # equals greater shake)
var rector=3
///////DONE EDITTING///////////
var stopit=0
var a=1
function init(which){
stopit=0
shake=which
shake.style.left=0
shake.style.top=0
}
function rattleimage(){
if ((!document.all&&!document.getElementById)
||stopit==1)
return
if (a==1){
shake.style.top=parseInt(shake.style.top)+rector
}
else if (a==2){
shake.style.left=parseInt(shake.style.left)+rector
}
else if (a==3){
shake.style.top=parseInt(shake.style.top)-rector
}
else{
shake.style.left=parseInt(shake.style.left)-rector
}
if (a<4)
a++
else
a=1
setTimeout("rattleimage()",50)
}
function stoprattle(which){
stopit=1
which.style.left=0
which.style.top=0
}
</script>


<body> 와 </body>사이에 넣어 주세요.

<a href="링크걸 주소"><img src="이미지주소"
class="shakeimage" onMouseover="init(this);rattleimage()"
onMouseout="stoprattle(this)"></a>

출처 : http://www.aircon1004.com/data/bbs/board.php?bo_table=pds1&wr_id=65

댓글목록

시형님의 댓글

profile_image 시형 작성일

재밌네요 ㅎ

831 (10/17P)

Search

Copyright © Cmd 명령어 3.147.103.15